Method MigrateAsync<TProps, TMigration>(IRedbService, ISqlDialectPro, bool, string?)
Execute migration for Props type.
Example:
await redb.MigrateAsync<OrderProps, OrderPropsMigration>(dialect);
public static Task<List<MigrationResult>> MigrateAsync<TProps, TMigration>(this IRedbService redb, ISqlDialectPro dialect, bool dryRun = false, string? appliedBy = null) where TProps : class where TMigration : IRedbMigration<TProps>, new()